home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August (Alt) / CHIP 2005-08.1.iso / program / guvenlik / syslinux-3.07.exe / dos / atou.c < prev    next >
Encoding:
C/C++ Source or Header  |  2004-12-15  |  145 b   |  11 lines

  1. #include "mystuff.h"
  2.  
  3. unsigned int atou(const char *s)
  4. {
  5.   unsigned int i = 0;
  6.   while (isdigit(*s))
  7.     i = i*10 + (*s++ - '0');
  8.   return i;
  9. }
  10.  
  11.